The JMProxyInfo Class
The
JMProxyInfo
class contains constants and methods related to setting or reading proxy server information.
package com.apple.mrj.JManager;
public class JMProxyInfo {
boolean itsSet;
String itsName;
int itsPort;
public JMProxyInfo() {
itsSet = false;
itsName = "";
itsPort = 0;
}
public JMProxyInfo(boolean set, String name, int port) {
itsSet = set;
itsName = name;
itsPort = port;
}
public boolean getSet() {
return itsSet;
}
public String getName() {
return itsName;
}
public int getPort() {
return itsPort;
}
};
© 1998 Apple Computer, Inc. — (Last Updated 3 Dec 98)